home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / WebObjects / SourceCode / DictionaryTableEx / DictionaryTableEx.wod < prev    next >
Text File  |  1996-04-20  |  826b  |  45 lines

  1. ////////////////////////
  2. //  DictionaryTable
  3. //  by Charles Lloyd
  4. ////////////////////////
  5.  
  6.  
  7. DictionaryTable: DictionaryTable {
  8.     dictionary=localDictionary;
  9.     cellPadding = 2;
  10. };
  11.  
  12. KeyTextField: WOTextField {
  13.     value = keyFieldValue;
  14. };
  15.  
  16. ValueTextField: WOTextField {
  17.     value = valueFieldValue;
  18. };
  19.  
  20. AddEntrySubmit: WOSubmitButton {
  21.     action = addEntry;
  22.     value = "Update Dictionary"
  23. };
  24.  
  25. DeleteKeyTextField: WOTextField {
  26.     value = deleteKeyFieldValue;
  27. };
  28.  
  29. DeleteEntrySubmit: WOSubmitButton {
  30.     action = deleteEntry;
  31.     value = "Delete Key"
  32. };
  33.  
  34. ComponentDescription: ComponentDescription {
  35.     componentName = "DictionaryTable";
  36. };
  37.  
  38. ShowSourceControls: ShowSource {
  39.     componentName = "DictionaryTable";
  40. }; 
  41.  
  42. RCBody: WOGenericContainer {
  43.     elementName = "body";
  44.     bgcolor = WOApp.globalBackgroundColor;
  45. };